home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Keyboard / Keyboard Messages / FunctionKeyMessage.cp < prev    next >
Text File  |  1997-06-28  |  340b  |  18 lines

  1. // FunctionKeyMessage.cp
  2.  
  3. #ifndef FunctionKeyMessage_h
  4. #include "FunctionKeyMessage.h"
  5. #endif
  6. #ifndef Commander_h
  7. #include "Commander.h"
  8. #endif
  9. #ifndef FunctionKeys_h
  10. #include "FunctionKeys.h"
  11. #endif
  12.  
  13. void FunctionKeyMessage::Send() const
  14.   {
  15.     if ( !Commander<FunctionKeys>::Null() )
  16.         Commander<FunctionKeys>()->FunctionKey( number );
  17.   }
  18.